home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Kill ini file in c:\windows
-
-
-
- rem check for dir
- if not exist c:\windows\nul goto nodir
-
- rem check for file
- if not exist c:\windows\fontplus.ini goto nofile
-
- Echo Deleting C:\WINDOWS\FONTPLUS.INI ...
- del c:\windows\fontplus.ini
- Echo Success!
-
- goto exit
-
- :nodir
- Echo The Directory: C:\WINDOWS does not exist.
- goto exit
-
- :noFile
- Echo The file: C:\WINDOWS\FONTPLUS.INI does not exist.
-
- :exit
-